home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / encodings / koi8_u.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  2KB  |  50 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. ''' Python Character Mapping Codec for KOI8U.
  5.  
  6.     This character scheme is compliant to RFC2319
  7.  
  8. Written by Marc-Andre Lemburg (mal@lemburg.com).
  9. Modified by Maxim Dzumanenko <mvd@mylinux.com.ua>.
  10.  
  11. (c) Copyright 2002, Python Software Foundation.
  12.  
  13. '''
  14. import codecs
  15. import koi8_r
  16.  
  17. class Codec(codecs.Codec):
  18.     
  19.     def encode(self, input, errors = 'strict'):
  20.         return codecs.charmap_encode(input, errors, encoding_map)
  21.  
  22.     
  23.     def decode(self, input, errors = 'strict'):
  24.         return codecs.charmap_decode(input, errors, decoding_map)
  25.  
  26.  
  27.  
  28. class StreamWriter(Codec, codecs.StreamWriter):
  29.     pass
  30.  
  31.  
  32. class StreamReader(Codec, codecs.StreamReader):
  33.     pass
  34.  
  35.  
  36. def getregentry():
  37.     return (Codec().encode, Codec().decode, StreamReader, StreamWriter)
  38.  
  39. decoding_map = koi8_r.decoding_map.copy()
  40. decoding_map.update({
  41.     164: 1108,
  42.     166: 1110,
  43.     167: 1111,
  44.     173: 1169,
  45.     180: 1028,
  46.     182: 1030,
  47.     183: 1031,
  48.     189: 1168 })
  49. encoding_map = codecs.make_encoding_map(decoding_map)
  50.